home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Includes / PedStreamOutput.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  320 b   |  22 lines

  1. /*    ==================
  2.  *    PedStreamOutput.hh
  3.  *    ==================
  4.  *    
  5.  *    Implemented by PedStreamOutput.cc
  6.  */
  7.  
  8. #pragma once
  9.  
  10. #include "PedObject.hh"
  11.  
  12. class PedStreamOutput : public PedObject {
  13. public:
  14.     PedStreamOutput();
  15.     virtual ~PedStreamOutput();
  16.     
  17.     virtual short Flush();
  18.     virtual short PutByte();
  19.         
  20. protected:
  21. };
  22.